







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Syntax
C# |
---|
[SerializableAttribute] public abstract class ReadOnlyMultiDictionaryBase<TKey, TValue> |
Visual Basic (Declaration) |
---|
<SerializableAttribute> _ Public MustInherit Class ReadOnlyMultiDictionaryBase(Of TKey, TValue) |
Visual C++ |
---|
[SerializableAttribute] generic<typename TKey, typename TValue> public ref class ReadOnlyMultiDictionaryBase abstract |
Type Parameters
- TKey
- TValue
The type exposes the following properties.
Public Properties
Name | Description | |
---|---|---|
![]() | Count |
Gets the number of keys in the dictionary. This property must be overridden
in the derived class.
(Overrides ReadOnlyCollectionBase<(Of <KeyValuePair<(Of <TKey, ICollection<(Of <TValue>)>>)>>)>..::Count.) |
![]() | Item |
Returns a collection of all of the values in the dictionary associated with key.
If the key is not present in the dictionary, an ICollection with no
values is returned. The returned ICollection is read-only.
|
![]() | Keys |
Gets a read-only collection all the keys in this dictionary.
|
![]() | KeyValuePairs |
Gets a read-only collection of all key-value pairs in the dictionary. If a key has multiple
values associated with it, then a key-value pair is present for each value associated
with the key.
|
![]() | Values |
Gets a read-only collection of all the values in the dictionary.
|
Explicit Interface Implementations
Name | Description | |
---|---|---|
![]() ![]() | ICollection<(Of <T>)>..::IsReadOnly | (Inherited from ReadOnlyCollectionBase<(Of <T>)>.) |
![]() ![]() | IDictionary<(Of <TKey, ICollection<(Of <TValue>)>>)>..::Item | |
![]() ![]() | IDictionary<(Of <TKey, ICollection<(Of <TValue>)>>)>..::Values | |
![]() ![]() | ICollection..::IsSynchronized |
Indicates whether the collection is synchronized.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.) |
![]() ![]() | ICollection..::SyncRoot |
Indicates the synchronization object for this collection.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.) |